home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
listings
/
v_11_07
/
file.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1993-01-06
|
298 b
|
17 lines
/*** File Class Implementation: file.c ***/
#include "file.h"
CONSTRUCTOR(File,())
CONSTRUCT(Object,())
END_CONSTRUCTOR
DESTRUCTOR(File)
END_DESTRUCTOR
DEF_CLASS(File,Object)
DEF_ABSTRACT(File,Seek);
DEF_ABSTRACT(File,Read);
DEF_ABSTRACT(File,Write);
END_CLASS